distributed memory system - определение. Что такое distributed memory system
Diclib.com
Словарь онлайн

Что (кто) такое distributed memory system - определение

Distributed memory multiprocessing

Distributed version control         
DISTRIBUTED COMPUTING
DRCS; Distributed Version Control System; Distributed revision control system; Distributed revison control system; Distributed version control system; Distributed Revision Control Systems; Pull request; Distributed revision control; Merge request
In software development, distributed version control (also known as distributed revision control) is a form of version control in which the complete codebase, including its full history, is mirrored on every developer's computer. Compared to centralized version control, this enables automatic management branching and merging, speeds up most operations (except pushing and pulling), improves the ability to work offline, and does not rely on a single location for backups.
Distributed parameter system         
SYSTEMS THAT HAVE AN INFINITE-DIMENSIONAL STATE-SPACE
Distributed parameter systems
In control theory, a distributed-parameter system (as opposed to a lumped-parameter system) is a system whose state space is infinite-dimensional. Such systems are therefore also known as infinite-dimensional systems.
Distributed computing         
  • (a), (b): a distributed system.<br/>(c): a parallel system.
SYSTEM WHOSE COMPONENTS ARE LOCATED ON DIFFERENT NETWORKED COMPUTERS
Distributed programming; Distributed processing; Distributed Computing; Distributed systems; Distributed system; Distributed comuting; Distributed application; Distributed computation; Distributing computing; Distributed Computing Architecture; Distributed architecture; Distributed Systems; Distributed-parameter system; Distributed software; Distributed systems theory; Distributed Information Processing; Distributed information processing; Distributed applications; Distributed computer system; Global Virtual Time; Asynchronous distributed system; Distributed Application; Distributed program; Applications of distributed computing; Distributed Apps; History of distributed computing
Distributed computing is a field of computer science that studies distributed systems. A distributed system is a system whose components are located on different networked computers, which communicate and coordinate their actions by passing messages to one another from any system.

Википедия

Distributed memory

In computer science, distributed memory refers to a multiprocessor computer system in which each processor has its own private memory. Computational tasks can only operate on local data, and if remote data are required, the computational task must communicate with one or more remote processors. In contrast, a shared memory multiprocessor offers a single memory space used by all processors. Processors do not have to be aware where data resides, except that there may be performance penalties, and that race conditions are to be avoided.

In a distributed memory system there is typically a processor, a memory, and some form of interconnection that allows programs on each processor to interact with each other. The interconnect can be organised with point to point links or separate hardware can provide a switching network. The network topology is a key factor in determining how the multiprocessor machine scales. The links between nodes can be implemented using some standard network protocol (for example Ethernet), using bespoke network links (used in for example the transputer), or using dual-ported memories.